home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMIGA-CD 2
/
Amiga-CD - Volume 2.iso
/
ungepackte_daten
/
1994
/
6
/
01
/
mini-compiler
/
mini.ampk
/
Mini-Compiler
/
Demo
/
Aufz.m
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-06-01
|
329 b
|
19 lines
Program Aufz;
Type Farbe = (Rot,Gruen,Lila,Braun,Blau);
Var Color : Farbe;
Begin
For Color := Blau DownTO Rot DO
Begin
Writeln(Ord(Color));
Case Color Of
Rot : Writeln('Rot');
Gruen : Writeln('Gruen');
Lila : Writeln('Lila');
Braun : Writeln('Braun');
Blau : Writeln('Blau');
End
End
End.